home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DDJ0992.ARJ / CORONER.MAK < prev    next >
Text File  |  1992-01-06  |  945b  |  40 lines

  1. .AUTODEPEND
  2.  
  3. TOOLS = c:\c\bin        # Change this to where the compiler/linker is
  4. INCLUDE = c:\c\include    # Change this to where your standard header files are
  5. LIB = C:\c\lib            # Change this to where your 'C' libraries files are
  6.  
  7. CC    = $(TOOLS)\bcc +coroner.cfg
  8. TASM  = $(TOOLS)\tasm
  9. TLINK = $(TOOLS)\tlink
  10.  
  11. LINK_INCLUDE = coroner.obj th_asm.obj xcptrept.obj coroner.def
  12.  
  13. coroner.exe: coroner.cfg $(LINK_INCLUDE) coroner.res
  14.   $(TLINK) /A=16 /x /c /Twe /L$(LIB) @&&|
  15. c0ws.obj th_asm.obj coroner.obj xcptrept.obj
  16. coroner
  17. coroner
  18. import.lib toolhelp.lib cws.lib
  19. coroner.def
  20. |
  21.   RC -t coroner.res coroner.exe
  22.  
  23. .c.obj:
  24.   $(CC) -c {$< }
  25.  
  26. #        *Individual File Dependencies*
  27. coroner.res: coroner.rc 
  28.     RC -R -I$(INCLUDE) coroner.RC
  29.  
  30. th_asm.obj: th_asm.asm 
  31.     $(TASM) /m2 /MX /ZI /O th_asm.asm
  32.  
  33. #        *Compiler Configuration File*
  34. coroner.cfg: coroner.mak
  35.   copy &&|
  36. -2 -w -WE -I$(INCLUDE) -d -H=CORONER.PCH
  37. | coroner.cfg
  38.  
  39.  
  40.